home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / qtools.arc / QCP208.ARC / COMPILE.BAT next >
DOS Batch File  |  1990-08-24  |  718b  |  23 lines

  1. echo off
  2. if NOT "%1" == "" goto start
  3. echo.
  4. echo Usage: %0 filename [ options.... ]
  5. echo.
  6. echo Where: filename is the file to compile.  QCP will decide which
  7. echo                 compiler to use based on the extension of the filename.
  8. echo        options  (up to 9) are passed to the compiler command line.
  9. echo.
  10. goto end
  11. :start
  12. rem NOTE: Again, the filenames here are forced to the current directory
  13. rem       by using ".\".  Your RAM disk would be a better choice.
  14. shift
  15. qcp /B+ /O.\errors.lst /M.\errors.mac    %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
  16. if errorlevel 128 goto end
  17. if NOT errorlevel 1 goto okcompile
  18. q .\errors.lst -e.\errors.mac -l.\errors.mac
  19. goto end
  20. :okcompile
  21.   type .\errors.lst
  22. :end
  23.